6e804db9cff046a8476321282d164f972f0b3fce,javasrc/src/org/ccnx/ccn/profiles/security/access/group/KeyDirectory.java,KeyDirectory,getPrivateKey,#,760

Before Change


					ContentNotReadyException, ContentGoneException, ContentDecodingException, 
					IOException, NoSuchAlgorithmException {
		if (!hasPrivateKeyBlock()) { // checks hasChildren
			Log.info("No private key block exists with name " + getPrivateKeyBlockName());
			return null;
		}
		WrappedKeyObject wko = getPrivateKeyObject();

After Change


					ContentNotReadyException, ContentGoneException, ContentDecodingException, 
					IOException, NoSuchAlgorithmException {
		if (!hasPrivateKeyBlock()) { // checks hasChildren
			if (Log.isLoggable(Level.INFO)) {
				Log.info("No private key block exists with name {0}", getPrivateKeyBlockName());
			}
			return null;
		}